home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / unarced / graphics / anim / putanim.h < prev    next >
C/C++ Source or Header  |  1995-03-17  |  685b  |  28 lines

  1. #ifndef PUTANIM_H
  2. #define PUTANIM_H
  3. #ifndef COMPILER_H
  4. #include "compiler.h"
  5. #endif
  6. #ifndef ILBM_H
  7. #include "ilbm.h"
  8. #endif
  9. typedef struct {
  10.    UBYTE operation; /* =5 for RIFF style */
  11.    UBYTE mask;
  12.    UWORD w,h;
  13.    WORD  x,y;
  14.    ULONG abstime; /* for timing w.r.t. start of anim file in jiffies (notused)*/
  15.    ULONG reltime; /* for timing w.r.t. last frame in jiffies */
  16.    UBYTE interleave; /* =0 for XORing to two frames back, =1 for last frame
  17.                              (not used yet)  */
  18.    UBYTE pad0;
  19.    ULONG bits;
  20.    UBYTE pad[16];
  21.    } AnimationHeader;
  22. extern BOOL OpenAnim();
  23. extern BOOL AddAnim();
  24. extern BOOL CloseAnim();
  25. extern BOOL InitAnimHdr();
  26. #endif PUTANIM_H
  27.  
  28.